:root {
  --bg: #f3f4f7;
  --surface: #ffffff;
  --line: #dde1ea;
  --text: #111a33;
  --text-soft: #4e5668;
  --accent: #2f63eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.header-shell {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-image-shell {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, #ffffff 68%);
  box-shadow: 0 8px 16px rgba(17, 26, 51, 0.16);
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #283046;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 25;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.page-main {
  width: min(1200px, calc(100% - 48px));
  margin: 28px auto 60px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(17, 26, 51, 0.08);
}

.hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(100%);
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 22px;
}

.lead {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: #334;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.1;
  font-style: italic;
}

.content-block {
  margin-top: 26px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.content-block p {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 1.03rem;
}

.image-note {
  margin-top: 14px;
  color: #1d2d57;
  font-weight: 600;
}

.site-footer {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #7b8498;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 940px) {
  .header-shell,
  .page-main,
  .site-footer {
    width: min(1200px, calc(100% - 24px));
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    justify-self: end;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 12px;
    width: min(340px, calc(100vw - 24px));
    flex-direction: column;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    z-index: 20;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 300px;
  }

  .content-block {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .header-shell,
  .page-main,
  .site-footer {
    width: min(1200px, calc(100% - 18px));
  }

  .brand {
    font-size: 1.4rem;
  }

  .hero-card {
    padding: 16px;
    gap: 18px;
  }

  .hero-card img {
    height: 220px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 11vw, 2.9rem);
    line-height: 1;
    margin-bottom: 0;
  }

  .content-block {
    margin-top: 18px;
    padding: 18px;
  }

  .content-block p {
    font-size: 0.98rem;
  }
}
