:root {
  --brand: #ff8500;
  --brand-dark: #cc6400;
  --brand-soft: #fff2df;
  --brand-pale: #ffe4bf;
  --violet: #6d28d9;
  --violet-dark: #4c1d95;
  --lilac: #f1eaff;
  --lilac-strong: #ddd0ff;
  --navy: #12213f;
  --navy-soft: #eaf0fb;
  --gray-900: #1f2937;
  --text: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --shadow: 0 22px 62px rgba(18, 33, 63, 0.12);
  --shadow-sm: 0 10px 28px rgba(18, 33, 63, 0.08);
  --shadow-brand: 0 16px 36px rgba(255, 133, 0, 0.24);
  --radius: 26px;
  --container: 1180px;
  --font: "Roboto Slab", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 92% 3%, rgba(255, 133, 0, .11), transparent 24rem),
    radial-gradient(circle at 0% 18%, rgba(109, 40, 217, .08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #fbfbfd 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button, input, textarea { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 8px 28px rgba(18, 33, 63, .04);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-pale), var(--lilac-strong), var(--violet), var(--navy));
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo-link { display: inline-flex; align-items: center; min-width: 180px; }
.logo-link img { width: 180px; height: auto; transition: transform .22s ease, filter .22s ease; }
.logo-link:hover img { transform: translateY(-1px) scale(1.015); filter: saturate(1.08); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}
.nav-menu a::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-soft), var(--lilac));
  opacity: 0;
  transform: scale(.9);
  transition: opacity .22s ease, transform .22s ease;
}
.nav-menu a:hover,
.nav-menu a.is-active { color: var(--violet-dark); transform: translateY(-1px); }
.nav-menu a:hover::before,
.nav-menu a.is-active::before { opacity: 1; transform: scale(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.mobile-toggle:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.mobile-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 999px; }

input[type="file"]::file-selector-button, 
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
input[type="file"]::file-selector-button{
  background: #eea764;
  color: white;
  font-family: inherit;
  margin-right: 1rem;
}
input[type="file"]::file-selector-button::before,
.btn::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 80%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.44), transparent);
  transform: rotate(23deg) translateX(-130%);
  transition: transform .48s ease;
  z-index: -1;
}
input[type="file"]::file-selector-button:hover{
  color: white;
  background: #df8f45;
}
input[type="file"]::file-selector-button:hover, .btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: rotate(23deg) translateX(260%); }
.btn-primary { background: linear-gradient(135deg, #ff9b2f 0%, var(--brand) 48%, #e36f00 100%); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: linear-gradient(135deg, #ffa949 0%, #f47d00 54%, #c95f00 100%); box-shadow: 0 20px 46px rgba(255, 133, 0, .30); }
.btn-outline { background: #fff; color: var(--violet-dark); border-color: var(--lilac-strong); }
.btn-outline:hover { background: linear-gradient(180deg, #fff, var(--lilac)); border-color: var(--violet); box-shadow: 0 14px 32px rgba(109, 40, 217, .13); }
.btn-dark { background: linear-gradient(135deg, var(--navy), #25314e); color: #fff; }
.btn-link { position: relative; color: var(--violet-dark); font-weight: 900; text-decoration: none; }
.btn-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--violet));
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .22s ease;
}
.btn-link:hover::after { transform: scaleX(1); }

.section { padding: 82px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%); }
.section-brand { background: linear-gradient(135deg, var(--brand-soft) 0%, #ffffff 48%, var(--lilac) 100%); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; margin-bottom: 34px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
.section-kicker::before { content: ""; width: 28px; height: 2px; background: var(--brand); border-radius: 999px; }
.section-title {
  color: var(--navy);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 820px;
}
.section-lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 820px; margin-top: 16px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,133,0,.14), transparent 31%),
    radial-gradient(circle at 8% 96%, rgba(109,40,217,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #fff8f0 100%);
  border-bottom: 1px solid var(--brand-pale);
}
.hero-grid { min-height: 640px; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr); gap: 54px; align-items: center; padding: 68px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid var(--brand-pale);
  background: rgba(255,255,255,.86);
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 24px;
  box-shadow: 0 8px 22px rgba(255,133,0,.08);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.hero h1 { color: var(--violet-dark); font-size: clamp(42px, 3vw, 72px); line-height: .98; letter-spacing: -1px; max-width: 820px; }
.hero p { max-width: 710px; margin-top: 24px; font-size: clamp(18px, 1.8vw, 22px); color: #475569; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-media { position: relative; }
.hero-image-card {
  position: relative;
  border-radius: 34px 34px 18px 34px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--brand-pale);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.hero-image-card:hover { transform: translateY(-4px); box-shadow: 0 28px 72px rgba(18,33,63,.14);  }
.hero-image-card img { border-radius: 24px 24px 12px 24px; width: 100%; }
.hero-note {
  position: absolute;
  left: -24px;
  bottom: 38px;
  width: 242px;
  padding: 18px;
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 255, 255, 0);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--lilac-strong);
}
.hero-note strong { display:block; color: var(--navy); margin-bottom: 4px; }
.hero-note span { color: var(--muted); font-size: 14px; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-item { background: #fff; padding: 28px; transition: background .2s ease, transform .2s ease; }
.feature-item:hover { background: linear-gradient(135deg, #fff, var(--brand-soft)); transform: translateY(-2px); }
.feature-item strong { display: block; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
.feature-item span { display: block; color: var(--muted); font-size: 15px; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,133,0,.07), rgba(109,40,217,.06));
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.card:hover { transform: translateY(-4px);  box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3 { position: relative; color: var(--navy); font-size: 22px; line-height: 1.22; letter-spacing: -0.02em; margin-bottom: 12px; }
.card p { position: relative; color: var(--muted); font-size: 16px; }
.card .card-link { position: relative; margin-top: 18px; display: inline-flex; }
.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, var(--brand-soft), var(--lilac)); */
    color: var(--violet-dark);
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: inset 0 0 0 1px rgb(76 29 149);
}
.image-card { padding: 0; overflow: hidden; }
.image-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--surface-soft); transition: transform .28s ease, filter .28s ease; }
.image-card:hover img { transform: scale(1.025); filter: saturate(1.04); }
.image-card .card-body { padding: 24px; }

.project-card { display: grid; gap: 24px; align-items: stretch; }
.project-card .project-media {
  background: linear-gradient(135deg, var(--brand-soft), var(--lilac));
  border-radius: 18px;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-card .project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.project-card:hover .project-media img { transform: scale(1.04); }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid rgba(255,133,0,.20);
}
.badge-muted { background: var(--surface-soft); color: #586579; border-color: var(--line); }
.badge-violet, .badge-blue, .badge-status { background: var(--lilac); color: var(--violet-dark); border-color: var(--lilac-strong); }
.badge-navy { background: var(--navy-soft); color: var(--navy); border-color: #cbd7ef; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: 52px; align-items: center; }
.split-media { display: grid; gap: 18px; }
.split-media img { width: 100%; border-radius: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li { position: relative; padding-left: 32px; color: #475569; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px var(--brand);
}

.page-hero {
  background: linear-gradient(135deg, #fff 0%, #fff7ec 56%, #f7f1ff 100%);
  border-bottom: 1px solid var(--brand-pale);
  padding: 74px 0 54px;
}
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 42px; align-items: center; }
.page-hero h1 { color: var(--violet-dark); font-size: clamp(40px, 3vw, 64px); line-height: 1; letter-spacing: -1px; }
.page-hero p { margin-top: 18px; font-size: 20px; color: #475569; max-width: 780px; }
.page-hero img { border-radius: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--brand-pale); background: #fff; }

.info-table { display: grid; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.info-row { display: grid; grid-template-columns: 250px minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row strong, .info-row span { padding: 16px 18px; }
.info-row strong { color: var(--navy); }
.info-row span { color: #475569; }

.timeline { display: grid; gap: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.timeline-item:hover { transform: translateY(-3px); border-color: rgba(109,40,217,.28); box-shadow: var(--shadow); }
.timeline-item strong { color: var(--brand-dark); font-size: 20px; }
.timeline-item h3 { color: var(--navy); font-size: 20px; margin-bottom: 6px; }
.timeline-item p { color: var(--muted); }

.publication-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }

.publication-toolbar{
  display: none;
  visibility: hidden;
}
.filter-btn, .page-btn {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.filter-btn:hover, .page-btn:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.filter-btn.is-active, .page-btn.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }
.publication-card { display: flex; flex-direction: column; min-height: 100%; }
.publication-card .date { color: var(--brand-dark); font-size: 13px; font-weight: 900; margin-bottom: 10px; }
.publication-card .card-link { margin-top: auto; padding-top: 20px; }
.publication-pages { min-height: 260px; }
.publication-page[hidden] { display: none !important; }
.publication-pagination { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.placeholder-panel {
  border: 1px dashed var(--lilac-strong);
  background: linear-gradient(135deg, #fff, var(--lilac));
  border-radius: var(--radius);
  padding: 42px;
  text-align: center;
}
.placeholder-panel h2 { color: var(--navy); font-size: clamp(28px, 3vw, 42px); line-height: 1.1; }
.placeholder-panel p { color: var(--muted); max-width: 640px; margin: 14px auto 0; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr); gap: 32px; align-items: start; }
.contact-list { display: grid; gap: 14px; }
.contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-item:hover { transform: translateY(-3px); border-color: rgba(255,133,0,.42); box-shadow: var(--shadow); }
.contact-item .icon-circle { width: 48px; height: 48px; margin: 0; }
.contact-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.contact-item span, .contact-item a { color: var(--muted); overflow-wrap: anywhere; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; gap: 7px; }
.form-row label { color: var(--navy); font-weight: 800; font-size: 14px; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 13px 14px;
  outline: none;
  color: var(--navy);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,133,0,.13); }

.expert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.expert-card { padding: 24px; }
.expert-role { display: inline-flex; margin-bottom: 10px; color: var(--brand-dark); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.partners-section { background: #fff; }
.partner-formats { margin-bottom: 28px; }
.partner-logo-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(180deg, #fff, #fbfbff);
  box-shadow: var(--shadow-sm);
}
.partner-logo-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 18px; }
.partner-logo-head h3 { color: var(--navy); font-size: 22px; }
.partner-logo-head p { color: var(--muted); max-width: 520px; }
.partner-marquee { overflow-x: auto; scrollbar-width: thin; }
.partner-track { display: flex; gap: 14px; min-width: max-content; padding-bottom: 4px; }
.partner-logo-placeholder {
  min-width: 180px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--lilac-strong);
  border-radius: 18px;
  color: var(--violet-dark);
  background: linear-gradient(135deg, #fff, var(--lilac));
  font-weight: 800;
  font-size: 14px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 44px;
  background: linear-gradient(135deg, var(--navy), #2a174f 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -38% auto auto 70%;
  width: 360px;
  height: 360px;
  background: var(--brand);
  opacity: .30;
  border-radius: 50%;
}
.cta-panel h2 { position: relative; color: #fff; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin-bottom: 12px; }
.cta-panel p { position: relative; color: #d8dce8; max-width: 680px; }
.cta-panel .btn { position: relative; background: #fff; color: var(--navy); }

.site-footer { background: var(--navy); color: #d5dbea; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) .55fr .8fr; gap: 38px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-logo img { width: 210px; filter: brightness(0) invert(1); opacity: .92; }
.footer-text { margin-top: 18px; max-width: 520px; color: #b9c0d0; }
.footer-col h2, .footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 8px; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover, .social-link:hover { color: var(--brand-pale); }
.footer-bottom { padding-top: 22px; color: #a9b3c8; font-size: 14px; }

@media (max-width: 1000px) {
  .header-actions .btn { display: none; }
  .header-inner { gap: 14px; }
  .logo-link { min-width: 150px; }
  .logo-link img { width: 150px; }
  .nav-menu { gap: 2px; }
  .nav-menu a { padding: 9px 10px; font-size: 14px; }
  .hero-grid, .page-hero-grid, .split, .contact-grid, .cta-panel { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; padding: 54px 0; }
  .hero-note { position: static; width: auto; margin-top: 16px; }
  .feature-strip, .grid-4, .expert-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .project-card { grid-template-columns: 1fr; }
  .project-card .project-media { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .partner-logo-head { display: block; }
  .partner-logo-head p { margin-top: 8px; }
}


@media (min-width: 761px) {
  .nav-menu { display: flex !important; }
  .mobile-toggle { display: none !important; }
}

@media (max-width: 760px) {
  .header-actions .btn { display: none; }
  .mobile-toggle { display: inline-block; }
  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { justify-content: center; border-radius: 14px; font-size: 15px; padding: 11px 14px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header .logo-link img { width: 150px; }
  .header-inner { height: 70px; }
  .section { padding: 62px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { display: block; }
  .feature-strip, .grid-2, .grid-3, .grid-4, .expert-grid { grid-template-columns: 1fr; }
  .card { padding: 22px; }
  .page-hero { padding: 50px 0 40px; }
  .page-hero-grid { gap: 26px; }
  .info-row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .cta-panel { padding: 28px; border-radius: 24px; }
}


/* Inline SVG icons replacing temporary letter/number placeholders */
.icon-circle .ui-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}
.contact-item .icon-circle .ui-icon {
  width: 22px;
  height: 22px;
}


/* === ADVISORIA v8: background heroes, verified links, refined blocks === */
:root {
  --brand: #ff8500;
  --brand-dark: #cc6400;
  --brand-soft: #fff3e2;
  --brand-pale: #ffe5c2;
  --violet: #6d28d9;
  --violet-dark: #4c1d95;
  --lilac: #f2edff;
  --lilac-strong: #ddd0ff;
  --navy: #12213f;
  --navy-soft: #edf3ff;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --line: #e5e7ef;
  --shadow: 0 24px 70px rgba(18, 33, 63, 0.13);
  --shadow-sm: 0 12px 32px rgba(18, 33, 63, 0.08);
}
body { background: #fff; }
body::before {
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 133, 0, .09), transparent 22rem),
    radial-gradient(circle at 0% 12%, rgba(109, 40, 217, .06), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}
.site-header::after {
  background: linear-gradient(90deg, var(--brand), var(--brand-pale), var(--lilac-strong), var(--violet));
}
.header-actions { gap: 10px; }
.btn-facebook {
  background: linear-gradient(135deg, var(--violet-dark), var(--navy));
  color: #fff;
  border-color: rgba(76, 29, 149, .16);
  box-shadow: 0 14px 30px rgba(76, 29, 149, .18);
}
.btn-facebook:hover {
  background: linear-gradient(135deg, var(--violet), var(--navy));
  box-shadow: 0 18px 40px rgba(76, 29, 149, .24);
}
.header-fb { min-height: 42px; padding-inline: 15px; }
.hero-home {
  background-image: linear-gradient(rgb(255 255 255 / 83%), rgb(255 255 255 / 37%)), url(pictures/photo-2026-05-01-20-15-21.jpg);
  background-size: cover;
  background-position: center bottom;
  border-bottom: 1px solid var(--brand-pale);
}
.hero-grid-single {
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 72px 0 48px;
}
.hero-copy { max-width: 960px; position: relative; z-index: 2; }
.hero-copy h1 { max-width: 980px; }
.hero-copy p { max-width: 820px; }
.hero-background-card {
  width: 100%;
  min-height: clamp(320px, 46vw, 560px);
  padding: 0;
  background-image:
    linear-gradient(180deg, rgba(18,33,63,.06), rgba(18,33,63,.16)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-radius: 34px 34px 18px 34px;
  border: 1px solid var(--brand-pale);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-background-card img { display: none !important; }
.hero-note-inline {
  position: static;
  width: min(100%, 720px);
  margin: -74px 0 0 28px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-color: var(--lilac-strong);
  z-index: 2;
}
.page-hero-bg {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  background-image: var(--page-hero-image);
  background-size: contain;
  background-position: center 100%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--brand-pale);
}
.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 44%, rgba(255,255,255,.48) 72%, rgba(255,255,255,.18) 100%),
    linear-gradient(180deg, rgba(76,29,149,.10), rgba(255,133,0,.10));
  z-index: 0;
}
.page-hero-bg .page-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--brand), var(--brand-pale), var(--lilac-strong), var(--violet));
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 92px 0 72px;
}
.page-hero-content > div {
  max-width: 840px;
  padding: 30px;
}
.page-hero-content h1 { color: var(--violet-dark); }
.page-hero-content p { color: #475569; }
.page-hero-grid > img { display: none !important; }
.card, .feature-item, .timeline-item, .contact-item, .info-table {
  border-color: rgba(203,213,225,.82);
}
.card {
  border-radius: 30px 30px 14px 30px;
}
.card:hover {
  transform: translateY(-5px);
}
.grid-4 .card:nth-child(even), .grid-3 .card:nth-child(even) {
  border-radius: 14px 30px 30px 30px;
}
.section-soft {
  background:
    radial-gradient(circle at 6% 12%, rgba(109,40,217,.06), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
}
.section-brand {
  background:
    radial-gradient(circle at 92% 10%, rgba(109,40,217,.08), transparent 22rem),
    linear-gradient(135deg, var(--brand-soft), #fff 52%, var(--lilac));
}
.icon-circle .ui-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.project-card {
  border-radius: 32px 32px 18px 32px;
  gap: 26px;
}
.project-card .project-media {
  border-radius: 24px 24px 12px 24px;
  min-height: 236px;
}
.image-card { border-radius: 30px 30px 14px 30px; }
.image-card img { aspect-ratio: 16 / 9; }
.cta-panel {
  background:
    radial-gradient(circle at 82% 10%, rgba(255,133,0,.22), transparent 18rem),
    linear-gradient(135deg, var(--navy), #1f2a4d 58%, var(--violet-dark));
  border: 1px solid rgba(255,255,255,.10);
}
.cta-panel .btn { background: #fff; color: var(--violet-dark); }
.contact-action-panel {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--brand-pale);
  border-radius: 28px 28px 12px 28px;
  background: linear-gradient(135deg, #fff, var(--brand-soft));
  box-shadow: var(--shadow-sm);
}
.contact-action-panel h3 { color: var(--navy); font-size: 22px; margin: 0 0 8px; }
.contact-action-panel p { color: var(--muted); margin: 0; }
.contact-action-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.contact-form-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,133,0,.10), transparent 12rem),
    #fff;
}
.contact-form-card .section-title { color: var(--violet-dark); }
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(109,40,217,.11);
}
.site-footer .btn-facebook, .footer-col .social-link {
  color: #fff;
}
@media (max-width: 1120px) {
  .header-actions .header-fb { display: none; }
}
@media (max-width: 1000px) {
  .hero-grid-single { padding: 58px 0 42px; }
  .page-hero-bg { min-height: 360px; }
  .page-hero-bg::before { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72)); }
  .page-hero-content { padding: 62px 0 52px; }
}
@media (max-width: 680px) {
  .hero-background-card { min-height: 280px; border-radius: 24px; }
  .hero-note-inline { margin: -42px 14px 0; }
  .page-hero-bg { min-height: 320px; }
  .page-hero-content > div { padding: 22px; border-radius: 22px; }
  .contact-action-buttons .btn { width: 100%; }
}


/* === ADVISORIA publications v9 === */
.publications-section {
  background:
    radial-gradient(circle at 0% 4%, rgba(255,133,0,.06), transparent 22rem),
    radial-gradient(circle at 100% 22%, rgba(109,40,217,.06), transparent 24rem),
    #ffffff;
}
.publication-grid,
.publication-preview-grid {
  align-items: stretch;
}
.publication-card-rich {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.publication-card-rich .publication-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-soft), var(--lilac));
  border-bottom: 1px solid rgba(203,213,225,.72);
}
.publication-card-rich .publication-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,33,63,0), rgba(18,33,63,.18));
  opacity: .8;
  pointer-events: none;
}
.publication-card-rich .publication-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}
.publication-card-rich:hover .publication-image img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.publication-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.publication-details {
  position: relative;
  margin-top: auto;
  padding-top: 18px;
}
.publication-details .publication-fulltext {
  display: none;
}
.publication-details summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--violet-dark);
  font-weight: 900;
  list-style: none;
}
.publication-details summary::-webkit-details-marker { display: none; }

.publication-details[open] summary::after { transform: rotate(180deg); }
.publication-fulltext {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--lilac-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbf9ff);
}
.publication-fulltext p + p { margin-top: 12px; }
.publication-fulltext a {
  color: var(--violet-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
}
.publication-modal[hidden] {
  display: none !important;
}
.publication-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.publication-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 33, 63, .56);
  backdrop-filter: blur(5px);
}
.publication-modal-dialog {
  position: relative;
  width: min(900px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border: 1px solid var(--lilac-strong);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px 22px 22px;
}
.publication-modal-close {
  float: right;
  margin: 8px;
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.publication-modal-title {
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  margin: 6px 0 14px;
}
.publication-modal-body {
  color: var(--muted);
}
.publication-modal-body p + p {
  margin-top: 12px;
}
body.modal-open {
  overflow: hidden;
}
.publication-card-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  border-style: dashed;
  background: linear-gradient(135deg, #fff, var(--lilac));
}
.publication-placeholder-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 32px;
  font-weight: 900;
}
.publication-preview-card .publication-content {
  padding: 22px;
}
.publication-preview-card .publication-image {
  aspect-ratio: 16 / 10;
}
@media (max-width: 680px) {
  .publication-content { padding: 20px; }
  .publication-fulltext { padding: 14px; }
  .publication-modal {
    padding: 12px;
  }
  .publication-modal-dialog {
    max-height: 92vh;
    padding: 18px 16px 16px;
    border-radius: 18px;
  }
}


.partners-carousel {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbfbff);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}

.partners-track {
  display: flex;
      align-items: center;
  width: 266.6667%;
  animation: partners-loop 38s linear infinite;
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

.partner-slide {
  flex: 0 0 12.5%;
  padding: 0 8px;
}

.partner-slide img {
  width: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
}

@keyframes partners-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.separator{
    height: stretch;
    min-height: 4rem;
}

.project-card-info{
  display: flex;
  flex-direction: column;
}