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

:root {
  --slate-900: #1A2332;
  --slate-700: #2E4057;
  --slate-500: #4A6274;
  --slate-300: #7A95A8;
  --slate-200: #D0DCE6;
  --slate-100: #EBF0F5;
  --slate-50:  #F4F7FA;
  --gold-500:  #B8933F;
  --gold-300:  #D4AF6A;
  --gold-100:  #F5EDD9;
  --white:     #FFFFFF;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(26,35,50,.08);
  --shadow-md: 0 4px 16px rgba(26,35,50,.12);
  --shadow-lg: 0 8px 32px rgba(26,35,50,.16);
  --transition: 0.22s ease;
  --max-w: 1200px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-500); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-300); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--slate-700); }
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .5rem;
}

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--slate-900); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: var(--slate-200); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gold-500); color: var(--white); border-color: var(--gold-500); }
.btn-primary:hover { background: var(--gold-300); border-color: var(--gold-300); color: var(--slate-900); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--slate-900); }
.btn-outline-dark { background: transparent; color: var(--slate-700); border-color: var(--slate-700); }
.btn-outline-dark:hover { background: var(--slate-700); color: var(--white); }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-logo {
  width: 42px; height: 42px; border-radius: var(--radius-sm); overflow: hidden;
  flex-shrink: 0; background: var(--slate-900);
  display: flex; align-items: center; justify-content: center;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--slate-900); letter-spacing: -.01em;
}
.brand-name span { color: var(--gold-500); }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: .875rem; font-weight: 500;
  color: var(--slate-700);
  padding: .5rem .85rem; border-radius: var(--radius-sm);
  text-decoration: none; transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold-500); background: var(--gold-100); }

.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  min-width: 240px; padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 200;
}
.dropdown a {
  display: block; padding: .6rem .9rem;
  font-family: 'Inter', Arial, sans-serif; font-size: .85rem;
  color: var(--slate-700); border-radius: var(--radius-sm); text-decoration: none;
}
.dropdown a:hover { background: var(--slate-50); color: var(--gold-500); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: .5rem; border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--slate-900); border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  overflow-y: auto; padding: 1.5rem;
  flex-direction: column; gap: .25rem;
  border-top: 1px solid var(--slate-200);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Inter', Arial, sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--slate-700); padding: .85rem 1rem; border-radius: var(--radius-sm);
  text-decoration: none; border-bottom: 1px solid var(--slate-100);
  display: flex; align-items: center; gap: .5rem;
}
.mobile-nav a:hover { color: var(--gold-500); background: var(--gold-100); }
.mobile-nav .mobile-section-label {
  font-family: 'Inter', Arial, sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-300); padding: 1rem 1rem .25rem;
}
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--slate-900);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,.92) 45%, rgba(46,64,87,.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p   { color: var(--slate-200); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(184,147,63,.18); border: 1px solid var(--gold-500);
  color: var(--gold-300); font-family: 'Inter', Arial, sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.page-hero {
  background: var(--slate-900); padding: 4.5rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: var(--slate-200); max-width: 620px; font-size: 1.05rem; }
.page-hero .label { color: var(--gold-300); }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Inter', Arial, sans-serif; font-size: .82rem;
  color: var(--slate-300); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--slate-300); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-300); }
.card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); padding: 2rem;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--gold-100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--gold-500); font-size: 1.5rem;
}
.stat-card {
  background: var(--slate-900); color: var(--white);
  border-radius: var(--radius-md); padding: 2rem;
  text-align: center; border-top: 3px solid var(--gold-500);
}
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--gold-300); line-height: 1; margin-bottom: .4rem;
}
.stat-label { font-family: 'Inter', Arial, sans-serif; font-size: .85rem; color: var(--slate-200); }

.img-rounded { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }

.accent-line {
  display: block; width: 48px; height: 3px;
  background: var(--gold-500); margin-bottom: 1.25rem; border-radius: 2px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header .accent-line { margin-left: auto; margin-right: auto; }
.toc {
  background: var(--slate-100); border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 2rem; margin-bottom: 2.5rem;
}
.toc h4 { margin-bottom: .75rem; font-size: 1rem; }
.toc ol { padding-left: 1.25rem; list-style: decimal; }
.toc ol li { margin-bottom: .4rem; }
.toc ol li a { font-family: 'Inter', Arial, sans-serif; font-size: .88rem; color: var(--slate-700); }
.toc ol li a:hover { color: var(--gold-500); }
.prose h2 { margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--slate-200); }
.prose h3 { margin: 2rem 0 .75rem; }
.prose ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; color: var(--slate-700); font-size: .97rem; }
.prose ol { padding-left: 1.5rem; list-style: decimal; margin-bottom: 1rem; }
.prose ol li { margin-bottom: .4rem; color: var(--slate-700); }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-family: 'Inter', Arial, sans-serif;
  font-size: .85rem; font-weight: 600; color: var(--slate-700); margin-bottom: .5rem;
}
.form-control {
  width: 100%; padding: .75rem 1rem;
  font-family: 'Source Serif 4', serif; font-size: 1rem;
  color: var(--slate-900); background: var(--white);
  border: 1.5px solid var(--slate-200); border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-control:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(184,147,63,.15); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-note { font-family: 'Inter', Arial, sans-serif; font-size: .78rem; color: var(--slate-300); margin-top: .4rem; }
.form-success {
  display: none; background: #E8F5E9; border: 1px solid #A5D6A7;
  color: #2E7D32; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  font-family: 'Inter', Arial, sans-serif; font-size: .9rem; margin-top: 1rem;
}
.form-success.show { display: flex; align-items: center; gap: .5rem; }
.info-box {
  background: var(--gold-100); border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem; margin: 2rem 0;
  font-family: 'Inter', Arial, sans-serif; font-size: .9rem; color: var(--slate-700);
}
.info-box strong { color: var(--slate-900); }
.site-footer { background: var(--slate-900); color: var(--slate-200); padding: 4rem 0 2rem; margin-top: auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.footer-brand-name span { color: var(--gold-300); }
.footer-desc { font-size: .88rem; line-height: 1.6; color: var(--slate-300); margin-bottom: 1.25rem; }
.footer-col h5 {
  font-family: 'Inter', Arial, sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--slate-300); margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-family: 'Inter', Arial, sans-serif; font-size: .88rem;
  color: var(--slate-300); text-decoration: none; transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-family: 'Inter', Arial, sans-serif; font-size: .8rem; color: var(--slate-300); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: 'Inter', Arial, sans-serif; font-size: .8rem; color: var(--slate-300); text-decoration: none; }
.footer-legal a:hover { color: var(--gold-300); }
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--slate-900); border-top: 3px solid var(--gold-500);
  padding: 1.25rem 1.5rem; box-shadow: 0 -4px 24px rgba(0,0,0,.25); display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-family: 'Inter', Arial, sans-serif; font-size: .88rem; color: var(--slate-200); min-width: 220px; }
.cookie-text a { color: var(--gold-300); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold-500); color: var(--white); border: none;
  padding: .6rem 1.4rem; border-radius: var(--radius-sm);
  font-family: 'Inter', Arial, sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-300); color: var(--slate-900); }
.btn-cookie-decline {
  background: transparent; color: var(--slate-300); border: 1px solid var(--slate-500);
  padding: .6rem 1.2rem; border-radius: var(--radius-sm);
  font-family: 'Inter', Arial, sans-serif; font-size: .85rem; cursor: pointer; transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--slate-200); color: var(--white); }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-sm);
  background: var(--gold-100); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-top: .1rem;
}
.feature-text h4 { font-size: 1rem; margin-bottom: .2rem; }
.feature-text p  { font-size: .9rem; margin: 0; }
.team-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-md); overflow: hidden; text-align: center; box-shadow: var(--shadow-sm); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card h4 { margin-bottom: .25rem; }
.team-card .role { font-family: 'Inter', Arial, sans-serif; font-size: .82rem; color: var(--gold-500); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.accordion { border: 1px solid var(--slate-200); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--slate-200); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Source Serif 4', serif; font-size: 1rem; font-weight: 600;
  color: var(--slate-900); transition: background var(--transition);
}
.accordion-header:hover { background: var(--slate-50); }
.accordion-header i { font-size: 1.1rem; color: var(--gold-500); transition: transform var(--transition); }
.accordion-header.open i { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 1.5rem 1.25rem; background: var(--white); font-size: .95rem; color: var(--slate-700); }
.accordion-body.open { display: block; }
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table thead th { background: var(--slate-900); color: var(--white); font-family: 'Inter', Arial, sans-serif; font-size: .85rem; font-weight: 600; padding: 1rem 1.25rem; text-align: left; }
.compare-table thead th:first-child { width: 30%; }
.compare-table tbody tr:nth-child(even) { background: var(--slate-50); }
.compare-table tbody td { padding: .9rem 1.25rem; font-size: .9rem; color: var(--slate-700); border-bottom: 1px solid var(--slate-200); vertical-align: top; }
.compare-table tbody td:first-child { font-weight: 600; color: var(--slate-900); }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm);
  background: var(--gold-100); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-info-text h5 { font-family: 'Inter', Arial, sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-300); margin-bottom: .2rem; }
.contact-info-text p { margin: 0; font-size: .95rem; }
.article-photo { width: 100%; border-radius: var(--radius-lg); overflow: hidden; margin: 2.5rem 0; box-shadow: var(--shadow-md); }
.article-photo img { width: 100%; max-height: 440px; object-fit: cover; }
.photo-caption { font-family: 'Inter', Arial, sans-serif; font-size: .78rem; color: var(--slate-300); text-align: center; margin-top: .5rem; }
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--gold-500); color: var(--white); padding: .5rem 1rem; border-radius: var(--radius-sm); font-family: 'Inter', Arial, sans-serif; font-size: .9rem; z-index: 9999; transition: top var(--transition); }
.skip-link:focus { top: 1rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.fw-600 { font-weight: 600; }
.color-gold { color: var(--gold-500); }
.bg-gold-light { background: var(--gold-100); }
.divider { border: none; border-top: 1px solid var(--slate-200); margin: 2rem 0; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--slate-200); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -2rem; top: .35rem; width: 14px; height: 14px; border-radius: 50%; background: var(--gold-500); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gold-500); }
.timeline-year { font-family: 'Inter', Arial, sans-serif; font-size: .8rem; font-weight: 700; color: var(--gold-500); letter-spacing: .06em; margin-bottom: .25rem; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .compare-table { display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}
