:root {
  --navy: #16345f;
  --blue: #07527e;
  --blue-dark: #063f69;
  --ink: #17212f;
  --muted: #697383;
  --line: #dce2e8;
  --red: #d71920;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --shell: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }
button, input, textarea { font: inherit; }

.content-shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.hero .content-shell,
.profile-section .content-shell,
.notice-strip .content-shell {
  width: min(900px, calc(100% - 40px));
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-top: 4px solid #272938;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.header-inner {
  min-height: 82px;
  width: min(1400px, calc(100% - 34px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #07527e;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.brand-text {
  font-size: 10px;
  line-height: 1.05;
  letter-spacing: .08em;
}

.brand-text b { font-size: 12px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: #073f6b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a:hover { text-decoration: underline; }
.desktop-nav .accent-link { color: var(--red); }
.search-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-left: 1px solid #e3e7eb;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-size: 28px;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 10px 12px;
  background: #f4f7fa;
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.mobile-nav .accent-link { color: var(--red); }

.hero {
  color: #fff;
  background: linear-gradient(105deg, var(--navy), #084875 60%, #065683);
}

.hero-inner {
  padding-block: 12px 0;
}

 .back-link {
  display: inline-block;
  margin: 0 0 8px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .025em;
}
.back-link::first-letter { color: var(--red); }

.hero-grid {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: 210px minmax(0, 560px);
  gap: 28px;
  align-items: start;
}

.photo-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 185px;
  height: 265px;
  transform: translateY(34px);
  border-left: 4px solid var(--red);
  background: #e8eef4;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  overflow: hidden;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.notice-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: auto;
  z-index: 2;
}
.notice-badge img {
  width: 100%;
  height: auto;
  display: block;
}
.badge-icon { display: none; }

.hero-copy { grid-column: 2; max-width: 560px; padding-top: 0; min-width: 0; }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.hero-copy p {
  margin: 8px 0 0;
  color: #d8e2ed;
  font-size: 14px;
}
.hero-copy strong { color: #fff; }

.profile-section {
  padding: 42px 0 26px;
  background: var(--paper);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.profile-card {
  position: relative;
  min-height: auto;
  max-width: 560px;
  margin-left: 208px;
  padding-left: 0;
  overflow: hidden;
}


.info-block {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}

.info-block h2 {
  margin: 0 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 400;
}

dl { margin: 0; }
dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 4px 0;
}
dt { color: #323b47; font-size: 12px; }
dd { margin: 0; font-size: 12px; font-weight: 800; }

.charges-block p {
  max-width: 520px;
  margin: -5px 0 12px;
  line-height: 1.6;
  font-size: 12px;
}
.charges-block strong { font-size: 12px; }

.notice-strip {
  padding: 24px 0 26px;
  background: var(--soft);
}
.notice-copy {
  width: 560px;
  max-width: 100%;
  margin-left: 208px;
  text-align: left;
}
.notice-copy p { margin: 5px 0; font-size: 12px; }
.notice-copy h2 {
  margin: 16px 0 12px;
  font-size: 18px;
  font-weight: 500;
}
.notice-copy a { color: #064fa2; font-size: 12px; }

.site-footer {
  color: #fff;
  background: linear-gradient(100deg, #07527e, #064673);
}
.footer-grid {
  display: grid;
  grid-template-columns: 160px repeat(4, 1fr);
  gap: 42px;
  padding: 42px 0 34px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe9f4;
}
.footer-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 30px;
}
.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 12px;
}
.footer-grid > div > a {
  display: block;
  margin: 9px 0;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
.footer-grid > div > a:hover { text-decoration: underline; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; max-width: 150px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.68);
  font-size: 10px;
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 760px) {
  .content-shell, .hero .content-shell, .profile-section .content-shell, .notice-strip .content-shell { width: min(100% - 28px, var(--shell)); }
  .header-inner { min-height: 70px; width: calc(100% - 26px); }
  .brand-mark { width: 34px; height: 34px; font-size: 22px; }
  .hero-inner { padding-top: 10px; }
  .hero-grid { position: relative; grid-template-columns: 172px minmax(0,1fr); gap: 18px; min-height: 84px; }
  .photo-wrap { left: 0; top: 0; width: 160px; height: 250px; transform: translateY(32px); }
  .notice-badge { width: 62px; }
  .hero-copy { padding-top: 6px; }
  .hero-copy h1 { font-size: clamp(21px, 5vw, 32px); white-space: normal; word-break: normal; overflow-wrap: anywhere; }
  .hero-copy p { margin-top: 10px; font-size: 14px; }
  .profile-section { padding-top: 72px; }
  .profile-card { max-width: 100%; margin-left: 0; padding-left: 0; }
  .info-block h2 { font-size: 24px; }
  dl > div { grid-template-columns: 130px minmax(0,1fr); gap: 15px; }
  dt, dd { font-size: 13px; }
  .notice-copy { width: 100%; max-width: 100%; margin-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .mobile-nav { grid-template-columns: 1fr; }
  .hero-grid { position: relative; grid-template-columns: 146px minmax(0,1fr); gap: 14px; min-height: 72px; }
  .photo-wrap { left: 0; top: 0; width: 138px; height: 220px; transform: translateY(28px); }
  .notice-badge { width: 54px; }
  .hero-copy h1 { font-size: 20px; white-space: normal; }
  .profile-section { padding-top: 58px; }
  dl > div { grid-template-columns: 1fr; gap: 3px; padding: 7px 0; border-bottom: 1px solid #eef1f4; }
  .footer-grid { grid-template-columns: 1fr; }
}
