:root {
  --navy-950: #071827;
  --navy-900: #0b2135;
  --navy-800: #12344f;
  --emerald-700: #08705c;
  --emerald-600: #0a846b;
  --emerald-100: #dff4ed;
  --gold-500: #efbd48;
  --gold-100: #fff4d7;
  --paper: #f7f8f4;
  --white: #ffffff;
  --ink: #10283d;
  --muted: #627183;
  --line: #dce4e6;
  --shadow-sm: 0 10px 30px rgba(7, 24, 39, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 24, 39, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: #d9e9ed;
  background: var(--navy-950);
  font-size: 0.84rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 20px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a:hover {
  color: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(12, 51, 66, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 24px rgba(7, 24, 39, 0.04);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--emerald-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  position: relative;
  padding: 12px 10px;
  border-radius: 10px;
  color: #365064;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--emerald-700);
  background: var(--emerald-100);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 16px;
  color: #fff;
  background: var(--emerald-700);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--navy-950);
  background: var(--gold-500);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  display: block;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.announcement {
  color: #e9f6f2;
  background: var(--emerald-700);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.announcement strong {
  padding: 2px 9px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 70px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 15%, rgba(239, 189, 72, 0.15), transparent 30%),
    radial-gradient(circle at 80% 90%, rgba(10, 132, 107, 0.35), transparent 35%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 span {
  color: #9ce3d0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 30px;
  color: #cfe0e6;
  font-size: 1.08rem;
}

.catalog-search {
  display: flex;
  max-width: 620px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.catalog-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--navy-900);
  background: transparent;
  outline: none;
}

.catalog-search button {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--emerald-700);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-search button:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--emerald-700);
}

.btn-primary:hover {
  background: var(--navy-800);
}

.btn-gold {
  color: var(--navy-950);
  background: var(--gold-500);
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  color: var(--emerald-700);
  border-color: #9bcabd;
  background: transparent;
}

.btn-outline:hover {
  color: #fff;
  border-color: var(--emerald-700);
  background: var(--emerald-700);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 170px 26px 26px 26px;
  box-shadow: var(--shadow-lg);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 24, 39, 0.32), transparent 48%);
  content: "";
}

.open-card {
  position: absolute;
  right: -22px;
  bottom: 28px;
  z-index: 2;
  width: min(310px, 82%);
  padding: 20px;
  border-left: 4px solid var(--gold-500);
  border-radius: 16px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.open-card span {
  display: block;
  color: var(--emerald-700);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.open-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.05rem;
}

.open-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.quick-links {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: #fff;
  background: var(--emerald-700);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.quick-link:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-link:hover {
  background: rgba(7, 24, 39, 0.22);
}

.quick-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 1.35rem;
  font-weight: 900;
}

.quick-link strong,
.quick-link span {
  display: block;
}

.quick-link span {
  margin-top: 2px;
  color: #cce8df;
  font-size: 0.82rem;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 68px 0;
}

.section-white {
  background: #fff;
}

.section-dark {
  color: #fff;
  background: var(--navy-950);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--emerald-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--gold-500);
}

.section-title {
  max-width: 700px;
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-dark .section-title {
  color: #fff;
}

.section-intro {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--muted);
}

.section-dark .section-intro {
  color: #c1d4dc;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 258px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 24, 39, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: #9bcabd;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 22px 0 9px;
  color: var(--navy-900);
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--emerald-700);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 72px;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px 120px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 240px;
  padding: 20px;
  border-radius: 16px;
  color: #fff;
  background: var(--emerald-700);
  box-shadow: var(--shadow-lg);
}

.image-badge strong {
  display: block;
  font-size: 1.05rem;
}

.image-badge span {
  display: block;
  margin-top: 4px;
  color: #d8f0e9;
  font-size: 0.85rem;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
}

.feature-list li::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-500);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.category-card span {
  display: block;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.category-card h3 {
  margin: 13px 0 6px;
  color: #fff;
  font-size: 1.05rem;
}

.category-card p {
  margin: 0;
  color: #b9cdd5;
  font-size: 0.86rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.news-feature,
.news-item {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 24, 39, 0.04);
}

.news-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.news-feature img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
}

.news-body {
  padding: 30px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--emerald-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-body h3,
.news-item h3 {
  margin: 14px 0 9px;
  color: var(--navy-900);
  line-height: 1.28;
}

.news-body h3 {
  font-family: Georgia, serif;
  font-size: 1.75rem;
}

.news-body p,
.news-item p {
  margin: 0;
  color: var(--muted);
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  padding: 22px;
  border-radius: 16px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(120deg, var(--emerald-700), #075040);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 12px 0 0;
  color: #d8f1ea;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  color: #fff;
  background: var(--navy-950);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at 78% 30%, var(--emerald-600), transparent 34%),
    linear-gradient(120deg, transparent 55%, rgba(239, 189, 72, 0.15));
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: #acc4ce;
  font-size: 0.86rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--gold-500);
  content: "/";
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #c4d7de;
  font-size: 1.04rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 52px;
}

.prose h2,
.prose h3 {
  color: var(--navy-900);
  line-height: 1.22;
}

.prose h2 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: 2.25rem;
}

.prose h2:not(:first-child) {
  margin-top: 46px;
}

.prose h3 {
  margin: 28px 0 10px;
}

.prose p {
  margin: 0 0 18px;
  color: #536878;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  color: #536878;
}

.prose li + li {
  margin-top: 8px;
}

.quote {
  margin: 36px 0;
  padding: 28px 30px;
  border-left: 5px solid var(--gold-500);
  border-radius: 0 16px 16px 0;
  color: var(--navy-900);
  background: var(--gold-100);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.55;
}

.side-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.side-card h2,
.side-card h3 {
  margin: 0 0 15px;
  color: var(--navy-900);
  font-size: 1.15rem;
}

.side-nav {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-nav a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 9px;
  color: #4b6374;
  font-size: 0.91rem;
  font-weight: 700;
}

.side-nav a::after {
  color: var(--emerald-700);
  content: "→";
}

.side-nav a:hover {
  color: var(--emerald-700);
  background: var(--emerald-100);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 34px;
  border-left: 2px solid #cce3dc;
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline-item::before {
  position: absolute;
  top: 2px;
  left: -8px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--emerald-700);
  box-shadow: 0 0 0 2px var(--emerald-700);
  content: "";
}

.timeline-item h3 {
  margin: 0 0 6px;
}

.timeline-item p {
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.value-card h3 {
  margin: 0 0 8px;
}

.value-card p {
  margin: 0;
  font-size: 0.91rem;
}

.catalog-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfdadd;
  border-radius: 11px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 4px rgba(8, 112, 92, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.filter-chip {
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid #bcd0d4;
  border-radius: 999px;
  color: #496170;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  border-color: var(--emerald-700);
  background: var(--emerald-700);
}

.result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.book-card {
  position: relative;
  min-height: 265px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f9fbfa);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.book-card:hover {
  border-color: #9bcabd;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.book-card[hidden] {
  display: none;
}

.book-tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-card h2,
.book-card h3 {
  margin: 20px 0 8px;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.3;
}

.book-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.book-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: #387360;
  font-size: 0.82rem;
  font-weight: 800;
}

.book-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32a875;
  content: "";
  box-shadow: 0 0 0 4px #dff4ed;
}

.empty-state {
  display: none;
  padding: 36px;
  border: 1px dashed #b7c9ce;
  border-radius: 15px;
  color: var(--muted);
  text-align: center;
  background: #fbfcfb;
}

.empty-state.is-visible {
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 24px;
  border-top: 4px solid var(--emerald-700);
  border-radius: 0 0 16px 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.process-step span {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 12px 0 7px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 24, 39, 0.04);
}

.article-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.article-card-body {
  padding: 27px;
}

.article-card h2 {
  margin: 12px 0 10px;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.28;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--emerald-700);
  background: var(--emerald-100);
  content: "+";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--emerald-700);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--emerald-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  color: var(--navy-900);
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--emerald-700);
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.contact-form > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #145b48;
  background: var(--emerald-100);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.map-panel {
  margin-top: 28px;
  padding: 32px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy-900);
}

.map-panel h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.map-panel p {
  margin: 9px 0 20px;
  color: #c0d2da;
}

.site-footer {
  color: #c7d8df;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  gap: 46px;
  padding: 68px 0 48px;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-brand p {
  max-width: 370px;
  margin: 18px 0 0;
  color: #9fb8c2;
  font-size: 0.9rem;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #a9c0ca;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: #a9c0ca;
  font-size: 0.88rem;
  font-style: normal;
}

.footer-contact a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  color: #849faa;
  font-size: 0.81rem;
}

.footer-bottom a:hover {
  color: #fff;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  color: #fff;
  text-align: center;
  background: var(--navy-950);
}

.not-found strong {
  display: block;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 15vw, 11rem);
  line-height: 0.9;
}

.not-found h1 {
  margin: 24px 0 10px;
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.not-found p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: #b7cdd6;
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 38px;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 440px;
  }

  .card-grid,
  .book-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-link {
    padding-inline: 18px;
  }

  .quick-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .category-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar-links {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 120px;
    right: 20px;
    left: 20px;
    z-index: 200;
    display: none;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

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

  .site-nav a {
    padding: 13px 14px;
    font-size: 0.94rem;
  }

  .site-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .split,
  .news-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-copy > p:not(.eyebrow),
  .catalog-search {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .hero-frame {
    border-radius: 100px 24px 24px 24px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-link,
  .quick-link:first-child {
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 78px 0;
  }

  .image-panel {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .news-feature {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .article-card {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .site-nav {
    top: 84px;
  }

  .announcement-inner {
    display: block;
    padding: 10px 0;
    line-height: 1.4;
  }

  .announcement strong {
    display: inline-block;
    margin-right: 5px;
  }

  .hero {
    padding: 54px 0 55px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .catalog-search {
    display: grid;
    gap: 6px;
    padding: 7px;
  }

  .catalog-search input {
    min-height: 48px;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 390px;
  }

  .open-card {
    right: 10px;
    bottom: 10px;
  }

  .quick-grid,
  .card-grid,
  .book-grid,
  .category-grid,
  .process-grid,
  .values-grid,
  .form-grid,
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .quick-link {
    min-height: 90px;
    padding: 17px;
    border-right: 0;
  }

  .section,
  .section-sm {
    padding: 62px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .btn {
    margin-top: 18px;
  }

  .image-panel img {
    border-radius: 22px 72px 22px 22px;
  }

  .image-badge {
    right: 10px;
    bottom: 10px;
  }

  .news-feature,
  .article-card {
    grid-template-columns: 1fr;
  }

  .news-feature img,
  .article-card img {
    min-height: 230px;
    max-height: 280px;
  }

  .news-body,
  .article-card-body {
    padding: 23px;
  }

  .cta-panel {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .page-hero {
    padding: 56px 0;
  }

  .catalog-panel,
  .contact-form {
    padding: 22px;
  }

  .form-grid .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 0 36px;
  }

  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-bottom-inner {
    display: grid;
    justify-content: center;
    min-height: 92px;
    padding: 18px 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .announcement,
  .site-footer,
  .cta-panel,
  .menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero {
    padding: 20px 0;
    color: #000;
    background: #fff;
  }

  .page-hero p,
  .breadcrumbs {
    color: #333;
  }
}
