:root {

  --ink: #101827;

  --muted: #5e6877;

  --navy-950: #071424;

  --navy-900: #0b1c31;

  --navy-800: #102944;

  --navy-700: #173a5e;

  --gold: #c7a35c;

  --gold-soft: #ead8ad;

  --green-deep: #1f7a4d;

  --green-soft: #4fa66a;

  --green-light: #7bcf8a;

  --white: #ffffff;

  --off-white: #f6f8fb;

  --mist: #e8edf3;

  --line: rgba(16, 41, 68, 0.12);

  --shadow: 0 22px 50px rgba(7, 20, 36, 0.12);

  --shadow-soft: 0 14px 30px rgba(7, 20, 36, 0.08);

  --shadow-premium: 0 26px 70px rgba(7, 20, 36, 0.16);

  --gold-glow: 0 0 30px rgba(199, 163, 92, 0.22);

  --radius: 8px;

  --container: 1160px;

  --header-h: 76px;

}



*,

*::before,

*::after {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

  scroll-padding-top: var(--header-h);

}



body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 20, 36, 0.55), rgba(7, 20, 36, 0.40)),
    radial-gradient(circle at 12% 6%, rgba(199, 163, 92, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 22%, rgba(16, 41, 68, 0.08), transparent 28rem),
    url("/assets/img/background/background.png") center / cover fixed,
    var(--navy-950);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}


body.is-loading {

  overflow: hidden;

}



body.has-custom-cursor,

body.has-custom-cursor a,

body.has-custom-cursor button,

body.has-custom-cursor [role="button"] {

  cursor: none;

}



img,

svg {

  display: block;

  max-width: 100%;

}



a {

  color: inherit;

  text-decoration: none;

}



button,

input,

textarea,

select {

  font: inherit;

}



p,

h1,

h2,

h3,

h4 {

  margin-top: 0;

}



p {

  color: var(--muted);

}



ul {

  margin: 0;

  padding-left: 20px;

}



li + li {

  margin-top: 8px;

}



:focus-visible {

  outline: 3px solid rgba(199, 163, 92, 0.7);

  outline-offset: 3px;

}



main,

.site-footer {

  position: relative;

  z-index: 5;

}



.custom-cursor {
  position: fixed;

  left: 0;

  top: 0;

  z-index: 1000;
  width: 34px;

  height: 34px;

  border: 1px solid rgba(199, 163, 92, 0.72);

  border-radius: 50%;

  pointer-events: none;

  opacity: 0;

  transform: translate3d(-50%, -50%, 0);

  transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;

}



.custom-cursor span {

  position: absolute;

  left: 50%;

  top: 50%;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--gold);

  box-shadow: 0 0 14px rgba(234, 216, 173, 0.55);

  transform: translate(-50%, -50%);

}



.custom-cursor.is-visible {

  opacity: 1;

}



.custom-cursor.is-hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(234, 216, 173, 0.9);
  background: rgba(199, 163, 92, 0.08);
}

.custom-cursor.is-zooming {
  width: 58px;
  height: 58px;
  border-color: rgba(234, 216, 173, 0.98);
  background: rgba(7, 20, 36, 0.2);
}

.custom-cursor.is-zooming span {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-soft);
  background: transparent;
  box-shadow: 0 0 18px rgba(234, 216, 173, 0.48);
}

.custom-cursor.is-zooming span::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -4px;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: rotate(45deg);
  transform-origin: left center;
}

.leaf-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  pointer-events: none;
  overflow: hidden;
  perspective: 900px;
}

.leaf {
  position: absolute;
  top: 0;
  left: var(--leaf-left, 50%);
  width: var(--leaf-size, 18px);
  height: calc(var(--leaf-size, 18px) * 1.65);
  opacity: var(--leaf-opacity, 0.86);
  border-radius: 100% 0 100% 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, var(--green-light), var(--green-soft) 44%, var(--green-deep));
  box-shadow: 0 10px 24px rgba(31, 122, 77, 0.42), 0 0 26px rgba(123, 207, 138, 0.42);
  filter: drop-shadow(0 8px 14px rgba(5, 26, 21, 0.2));
  transform-origin: 50% 75%;
  transform-style: preserve-3d;
  transform: translate3d(0, var(--leaf-y, 0vh), 0) rotateX(var(--leaf-rx, 0deg)) rotateY(var(--leaf-ry, 0deg)) rotateZ(var(--leaf-rotate, 0deg));
  animation: leafSpin var(--leaf-spin-duration, 5s) linear infinite;
  animation-delay: var(--leaf-delay, 0s);
}


.leaf::before {
  content: "";
  position: absolute;
  left: 50%;

  top: 8%;

  bottom: 8%;

  width: 1px;

  background: linear-gradient(to bottom, rgba(234, 216, 173, 0.75), rgba(234, 216, 173, 0.12));

  transform: rotate(18deg);
}

.leaf-static {
  display: block;
  top: -12vh;
  opacity: 0.62;
  animation-name: staticLeafFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.leaf-static.l1 { left: 6%; --leaf-size: 34px; --leaf-drift: 120px; animation-duration: 18s; animation-delay: -8s; }
.leaf-static.l2 { left: 14%; --leaf-size: 28px; --leaf-drift: -90px; animation-duration: 23s; animation-delay: -4s; }
.leaf-static.l3 { left: 24%; --leaf-size: 42px; --leaf-drift: 150px; animation-duration: 25s; animation-delay: -11s; }
.leaf-static.l4 { left: 34%; --leaf-size: 30px; --leaf-drift: -130px; animation-duration: 20s; animation-delay: -6s; }
.leaf-static.l5 { left: 45%; --leaf-size: 38px; --leaf-drift: 100px; animation-duration: 21s; animation-delay: -9s; }
.leaf-static.l6 { left: 55%; --leaf-size: 31px; --leaf-drift: -110px; animation-duration: 27s; animation-delay: -3s; }
.leaf-static.l7 { left: 64%; --leaf-size: 40px; --leaf-drift: 130px; animation-duration: 21s; animation-delay: -7s; }
.leaf-static.l8 { left: 73%; --leaf-size: 29px; --leaf-drift: -70px; animation-duration: 18s; animation-delay: -5s; }
.leaf-static.l9 { left: 82%; --leaf-size: 37px; --leaf-drift: 100px; animation-duration: 25s; animation-delay: -12s; }
.leaf-static.l10 { left: 91%; --leaf-size: 30px; --leaf-drift: -120px; animation-duration: 23s; animation-delay: -2s; }
.leaf-static.l11 { left: 39%; --leaf-size: 33px; --leaf-drift: 75px; animation-duration: 29s; animation-delay: -13s; }
.leaf-static.l12 { left: 68%; --leaf-size: 35px; --leaf-drift: -140px; animation-duration: 21s; animation-delay: -10s; }


.container {

  width: min(calc(100% - 32px), var(--container));

  margin: 0 auto;

}



.skip-link {

  position: fixed;

  left: 16px;

  top: -60px;

  z-index: 300;

  padding: 10px 14px;

  color: var(--white);

  background: var(--navy-900);

  border-radius: 6px;

}



.skip-link:focus {

  top: 16px;

}



.loader {

  position: fixed;

  inset: 0;

  z-index: 250;

  display: grid;

  place-items: center;

  color: var(--white);

  background:

    linear-gradient(135deg, rgba(7, 20, 36, 0.97), rgba(12, 31, 54, 0.95)),

    url("/assets/img/background/background.png") center / cover;

  background-attachment: fixed;

  transition: opacity 0.55s ease, visibility 0.55s ease;

}



.loader.is-hidden {

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

}



.loader-panel {

  position: relative;

  width: min(360px, calc(100% - 48px));

  padding: 30px 28px;

  text-align: center;

  border: 1px solid rgba(199, 163, 92, 0.32);

  border-radius: var(--radius);

  background: rgba(7, 20, 36, 0.68);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

  overflow: hidden;

}



.loader-panel::before {

  content: "";

  position: absolute;

  inset: -1px;

  border-radius: inherit;

  background: linear-gradient(115deg, transparent, rgba(234, 216, 173, 0.16), transparent);

  transform: translateX(-100%);

  animation: panelSweep 2.6s ease-in-out infinite;

}



.loader-logo {

  display: grid;

  place-items: center;

  width: 72px;

  height: 72px;

  margin: 0 auto 14px;

  border: 1px solid rgba(199, 163, 92, 0.42);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  box-shadow: var(--gold-glow);

  animation: logoPulse 2.8s ease-in-out infinite;

}



.loader-logo img {

  width: 54px;

  height: 54px;

}



.loader-chart {

  width: 220px;

  height: 82px;

  margin: 0 auto 14px;

}



.chart-grid {
  fill: none;

  stroke: rgba(255, 255, 255, 0.12);

  stroke-width: 1;

}

.chart-axis {
  fill: none;
  stroke: rgba(234, 216, 173, 0.62);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1 !important;
  stroke-dashoffset: 1;
  animation: none;
}

.chart-arrow {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1 !important;
  stroke-dashoffset: 1;
  animation: none;
}


.dollar-field {

  position: absolute;

  inset: 0;

  pointer-events: none;

  perspective: 420px;

}



.dollar-field span {

  position: absolute;

  left: 50%;

  top: 48%;

  color: rgba(234, 216, 173, 0.48);

  font-weight: 700;

  transform: translate(-50%, -50%);

  animation: scatterDollar 1.2s ease-out forwards;

}



.dollar-field span:nth-child(1) { --x: -105px; --y: -46px; animation-delay: 0.12s; }

.dollar-field span:nth-child(2) { --x: 86px; --y: -38px; animation-delay: 0.2s; }

.dollar-field span:nth-child(3) { --x: -72px; --y: 48px; animation-delay: 0.28s; }

.dollar-field span:nth-child(4) { --x: 112px; --y: 34px; animation-delay: 0.36s; }

.dollar-field span:nth-child(5) { --x: 12px; --y: -68px; animation-delay: 0.44s; }

.dollar-field span:nth-child(6) { --x: -6px; --y: 70px; animation-delay: 0.52s; }



.loader-panel p {

  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.95rem;

}



.site-header {

  position: sticky;

  top: 0;

  z-index: 100;

  background: rgba(7, 20, 36, 0.72);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  transition: background-color 0.25s ease, box-shadow 0.25s ease;

}



.site-header.is-scrolled {

  background: rgba(7, 20, 36, 0.96);

  box-shadow: 0 12px 26px rgba(7, 20, 36, 0.18);

}



.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  min-height: var(--header-h);

}



.brand,

.footer-brand {

  display: inline-flex;

  align-items: center;

  gap: 12px;

}



.brand {

  color: var(--white);

  font-weight: 800;

}



.brand img,

.footer-brand img {

  width: 42px;

  height: 42px;

}



.site-nav {

  display: flex;

  align-items: center;

  gap: 18px;

}



.site-nav a {

  position: relative;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.92rem;

  font-weight: 700;

}



.site-nav a::after {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: -8px;

  height: 2px;

  background: var(--gold);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.2s ease;

}



.site-nav a:hover,

.site-nav a:focus-visible,

.site-nav a.is-active {

  color: var(--white);

}



.site-nav a.is-active::after {

  transform: scaleX(1);

}



.lang-link {

  padding: 7px 10px;

  color: var(--navy-950) !important;

  background: var(--gold);

  border-radius: 6px;

}



.lang-link::after {

  display: none;

}



.menu-toggle {

  display: none;

  width: 44px;

  height: 44px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.24);

  border-radius: 6px;

  background: rgba(255, 255, 255, 0.06);

  cursor: pointer;

}



.menu-toggle span {

  display: block;

  width: 20px;

  height: 2px;

  margin: 5px auto;

  background: var(--white);

  transition: transform 0.2s ease, opacity 0.2s ease;

}



.menu-toggle.is-open span:nth-child(1) {

  transform: translateY(7px) rotate(45deg);

}



.menu-toggle.is-open span:nth-child(2) {

  opacity: 0;

}



.menu-toggle.is-open span:nth-child(3) {

  transform: translateY(-7px) rotate(-45deg);

}



.section {

  position: relative;

  padding: 92px 0;

}



.section:not(.hero):not(.institutional-section)::before {

  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  width: min(240px, 42vw);

  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(199, 163, 92, 0.62), transparent);

  transform: translateX(-50%);

}



.section-alt {
  background: transparent;
}


.compact-section {

  padding-top: 70px;

  padding-bottom: 70px;

}



.theme-dark {

  color: var(--white);

  background: var(--navy-950);

}



.hero {

  position: relative;

  min-height: 100svh;

  display: grid;

  align-items: center;

  padding-top: calc(var(--header-h) + 40px);

  padding-bottom: 70px;

  overflow: hidden;

}



.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:

    linear-gradient(115deg, transparent 0 32%, rgba(234, 216, 173, 0.12) 32.2%, transparent 33% 64%, rgba(234, 216, 173, 0.08) 64.2%, transparent 65%),

    radial-gradient(circle at 22% 28%, rgba(199, 163, 92, 0.18), transparent 24rem),

    radial-gradient(circle at 82% 18%, rgba(42, 95, 142, 0.18), transparent 28rem);

  opacity: 0.82;

}



.hero-bg {

  position: absolute;

  inset: 0;

  background:

    linear-gradient(90deg, rgba(7, 20, 36, 0.93), rgba(7, 20, 36, 0.76) 48%, rgba(7, 20, 36, 0.58)),

    url("/assets/img/background/background.png") center / cover;

  background-attachment: fixed;

}



.hero-bg::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(7, 20, 36, 0.1), rgba(7, 20, 36, 0.7));

}



.hero-layout {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);

  gap: 48px;

  align-items: center;

}



.eyebrow {

  margin-bottom: 12px;

  color: var(--gold);

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;

}



h1 {

  margin-bottom: 14px;

  font-size: clamp(2.55rem, 6vw, 5.1rem);

  line-height: 1.02;

  letter-spacing: 0;

  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.26);

}



h2 {

  margin-bottom: 0;

  color: var(--navy-900);

  font-size: clamp(1.85rem, 3vw, 2.65rem);

  line-height: 1.16;

}



h3 {

  color: var(--navy-900);

  line-height: 1.25;

}



.theme-dark h1,

.theme-dark h2,

.theme-dark h3,

.theme-dark p {

  color: var(--white);

}



.hero-title {

  max-width: 760px;

  margin-bottom: 16px;

  color: rgba(255, 255, 255, 0.9);

  font-size: clamp(1.05rem, 1.7vw, 1.35rem);

  font-weight: 800;

}



.hero-text {

  max-width: 680px;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 1.08rem;

}



.typewriter-line {

  min-height: 32px;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.8);

}



.typewriter {

  color: var(--gold-soft);

  font-weight: 800;

}



.typewriter::after {

  content: "";

  display: inline-block;

  width: 2px;

  height: 1em;

  margin-left: 4px;

  background: var(--gold);

  vertical-align: -0.12em;

  animation: caret 0.8s steps(1) infinite;

}



.hero-actions,

.cv-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

}



.hero-pills {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 28px;

}



.hero-pills span {

  display: inline-flex;

  align-items: center;

  min-height: 34px;

  padding: 0 12px;

  color: var(--gold-soft);

  border: 1px solid rgba(234, 216, 173, 0.34);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  font-size: 0.84rem;

  font-weight: 900;

}



.button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 46px;

  padding: 0 18px;

  border: 1px solid transparent;

  border-radius: 6px;

  font-weight: 800;

  line-height: 1.1;

  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;

  box-shadow: 0 12px 24px rgba(7, 20, 36, 0.12);

}



.button:hover,

.button:focus-visible {

  transform: translateY(-3px);

  box-shadow: 0 18px 36px rgba(7, 20, 36, 0.18);

}



.button-primary {

  color: var(--navy-950);

  background: var(--gold);

  border-color: var(--gold);

}



.button-primary:hover {

  background: var(--gold-soft);

  box-shadow: 0 18px 40px rgba(199, 163, 92, 0.25);

}



.button-secondary {

  color: var(--white);

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.28);

}



.section-alt .button-secondary,

.cv-panel .button-secondary {

  color: var(--navy-900);

  background: var(--white);

  border-color: var(--line);

}



.button-ghost {

  color: var(--white);

  background: transparent;

  border-color: rgba(199, 163, 92, 0.5);

}



.hero-portrait {

  justify-self: end;

  width: min(360px, 100%);

}



.portrait-frame {

  padding: 10px;

  border: 1px solid rgba(199, 163, 92, 0.45);

  border-radius: var(--radius);

  background:

    radial-gradient(circle at 50% 24%, rgba(234, 216, 173, 0.2), transparent 32%),

    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24), var(--gold-glow);

  backdrop-filter: blur(8px);

}



.portrait-frame img {

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  border-radius: 5px;

  background:

    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.2), transparent 34%),

    rgba(255, 255, 255, 0.06);

}



.hero-note {

  margin-top: 14px;

  padding: 16px;

  border-left: 3px solid var(--gold);

  background: rgba(7, 20, 36, 0.62);

}



.hero-note span,

.contact-card span {

  display: block;

  color: var(--gold);

  font-size: 0.78rem;

  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;

}



.hero-note strong {

  display: block;

  margin-top: 4px;

  color: var(--white);

}



.scroll-down {

  position: absolute;

  z-index: 1;

  left: 50%;

  bottom: 22px;

  width: 28px;

  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 18px;

  transform: translateX(-50%);

}



.scroll-down span {

  position: absolute;

  left: 50%;

  top: 9px;

  width: 4px;

  height: 8px;

  border-radius: 999px;

  background: var(--gold);

  transform: translateX(-50%);

  animation: scrollCue 1.5s ease-in-out infinite;

}



.section-heading {

  max-width: 760px;

  margin-bottom: 30px;

}



.card,

.profile-text,

.expertise-card,

.mission-card,

.path-card,

.contact-card,

.cv-panel,

.stat-card,

.timeline-group {

  border: 1px solid var(--line);

  border-radius: var(--radius);

  background: var(--white);

  box-shadow: var(--shadow-soft);

}



.profile-text,

.expertise-card,

.mission-card,

.path-card,

.contact-card,

.stat-card,

.timeline-group,

.language-card {

  position: relative;

  overflow: hidden;

}



.profile-text::before,

.expertise-card::before,

.mission-card::before,

.path-card::before,

.contact-card::before,

.stat-card::before,

.timeline-group::before,

.language-card::before {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  height: 3px;

  background: linear-gradient(90deg, var(--gold), rgba(199, 163, 92, 0.08));

}



.card,

.profile-text {

  padding: 28px;

}



.profile-grid {

  display: grid;

  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);

  gap: 22px;

}



.profile-text p {

  margin-bottom: 0;

  font-size: 1.05rem;

}



.stat-grid {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 16px;

}



.stat-card {

  min-height: 132px;

  padding: 22px;

  background: linear-gradient(180deg, #fff, #f8fafc);

}



.stat-value {

  display: block;

  color: var(--navy-900);

  font-size: clamp(1.25rem, 2.3vw, 2rem);

  font-weight: 800;

}



.stat-card p {

  margin: 8px 0 0;

}



.expertise-grid,

.mission-grid,

.contact-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;

}



.expertise-card,

.mission-card,

.path-card,

.contact-card {

  padding: 24px;

}



.expertise-card,

.mission-card {

  background:

    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));

  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;

}



.expertise-card:hover,

.mission-card:hover {

  transform: translateY(-4px);

  border-color: rgba(199, 163, 92, 0.45);

  box-shadow: var(--shadow-premium);

}



.card-icon {

  display: inline-grid;

  place-items: center;

  width: 38px;

  height: 38px;

  margin-bottom: 16px;

  color: var(--navy-950);

  background: linear-gradient(135deg, var(--gold), var(--gold-soft));

  border-radius: 6px;

  font-weight: 900;

  box-shadow: 0 12px 22px rgba(199, 163, 92, 0.18);

}



.card-icon svg {

  width: 23px;

  height: 23px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;

}



.expertise-card h3,

.mission-card h3,

.path-card h3 {

  margin-bottom: 10px;

  font-size: 1.04rem;

}



.expertise-card p,

.mission-card p,

.path-card p,

.contact-card p {

  margin-bottom: 0;

}



.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 26px;
  border: 1px solid rgba(234, 216, 173, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 252, 0.54));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}


.skill {

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 8px 16px;

  align-items: center;

}



.skill span,

.skill b {

  color: var(--navy-900);

  font-weight: 800;

}



.skill b {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 28px;

  padding: 4px 10px;

  color: var(--navy-800);

  background: rgba(199, 163, 92, 0.14);

  border: 1px solid rgba(199, 163, 92, 0.28);

  border-radius: 999px;

  font-size: 0.82rem;

}



.skill i {

  grid-column: 1 / -1;

  position: relative;

  height: 8px;

  overflow: hidden;

  border-radius: 999px;

  background: #dfe6ee;

}



.skill i::before {

  content: "";

  position: absolute;

  inset: 0 auto 0 0;

  width: var(--level, 0%);

  border-radius: inherit;

  background: linear-gradient(90deg, var(--navy-800), var(--gold));

  transition: width 0.7s ease;

  box-shadow: 0 0 18px rgba(199, 163, 92, 0.2);

}



.filter-bar {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 24px;

}



.filter-button {

  min-height: 38px;

  padding: 0 14px;

  color: var(--navy-900);

  border: 1px solid var(--line);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);

  cursor: pointer;

  font-weight: 800;

  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;

}



.filter-button.is-active,

.filter-button:hover,

.filter-button:focus-visible {

  color: var(--navy-950);

  border-color: var(--gold);

  background: var(--gold-soft);

  transform: translateY(-1px);

  box-shadow: 0 10px 22px rgba(199, 163, 92, 0.16);

}



.mission-card.is-hidden {

  display: none;

}



.language-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;

}



.language-card {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  min-height: 74px;

  padding: 18px 20px;

  border: 1px solid var(--line);

  border-left: 3px solid var(--gold);

  border-radius: var(--radius);

  background: var(--off-white);

  box-shadow: var(--shadow-soft);

}



.language-card span {

  color: var(--navy-900);

  font-weight: 900;

}



.language-card strong {

  color: var(--navy-700);

  font-size: 0.92rem;

}



.institutional-section {

  position: relative;

  overflow: hidden;

  background:

    linear-gradient(135deg, rgba(7, 20, 36, 0.94), rgba(13, 39, 68, 0.86)),

    url("/assets/img/background/background.png") center / cover;

  background-attachment: fixed;

}



.institutional-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at 80% 20%, rgba(199, 163, 92, 0.13), transparent 34%);

}



.institutional-section::after {

  content: "";

  position: absolute;

  inset: 0;

  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);

  opacity: 0.5;

}



.institutional-panel {

  position: relative;

  z-index: 1;

  max-width: 850px;

  padding: 26px 0;

}



.institutional-panel p {

  max-width: 760px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 1.06rem;

}



.badge-row {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 24px;

}



.badge-row span {

  display: inline-flex;

  align-items: center;

  min-height: 34px;

  padding: 0 12px;

  color: var(--gold-soft);

  border: 1px solid rgba(234, 216, 173, 0.35);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  font-size: 0.84rem;

  font-weight: 900;

}



.timeline-group {

  padding: 28px;

  margin-bottom: 24px;

  background:

    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));

}



.timeline-group > h3 {

  margin-bottom: 24px;

}



.timeline {

  position: relative;

  display: grid;

  gap: 22px;

  padding-left: 30px;

}



.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;

  width: 2px;

  background: linear-gradient(to bottom, var(--gold), rgba(199, 163, 92, 0.18));
  box-shadow: 0 0 18px rgba(199, 163, 92, 0.18);
}

.timeline::after {
  content: "";
  position: absolute;
  left: 1px;
  top: calc(100% - 18px);
  z-index: 4;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-light) 0 34%, var(--green-deep) 68%);
  box-shadow: 0 0 0 7px rgba(31, 122, 77, 0.2), 0 0 28px rgba(123, 207, 138, 0.52);
  animation: timelineRunnerTrack 10s linear infinite;
}


.timeline-item {

  position: relative;

  padding-bottom: 8px;

}



.timeline-item::before {

  content: "";

  position: absolute;

  left: -28px;

  top: 7px;

  width: 13px;

  height: 13px;

  border: 3px solid var(--white);

  border-radius: 50%;

  background: var(--gold);

  box-shadow: 0 0 0 4px rgba(199, 163, 92, 0.22);

}



.timeline-period {

  display: inline-block;

  margin-bottom: 7px;

  color: var(--gold);

  font-weight: 900;

}



.timeline-item h4 {

  margin-bottom: 8px;

  color: var(--navy-900);

  font-size: 1.08rem;

}



.timeline-item p:last-child {

  margin-bottom: 0;

}



.path-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

}



.institutional-card {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 252, 0.72)),
    url("/assets/img/background/background.png") center / cover;
  background-attachment: fixed;
  border-color: rgba(199, 163, 92, 0.24);
  box-shadow: 0 18px 50px rgba(7, 20, 36, 0.1), 0 0 28px rgba(199, 163, 92, 0.08);
}

.institutional-card p {
  color: var(--muted);
}

.institutional-card h3 {
  color: var(--navy-900);
}


.cv-panel {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 32px;

  background:

    linear-gradient(135deg, rgba(7, 20, 36, 0.95), rgba(16, 41, 68, 0.9)),

    url("/assets/img/background/background.png") center / cover;

  background-attachment: fixed;

  border-color: rgba(199, 163, 92, 0.22);

  box-shadow: var(--shadow-premium);

}



.cv-panel h2,

.cv-panel p {

  color: var(--white);

}



.cv-panel p:last-child {

  margin-bottom: 0;

}



.contact-grid {

  grid-template-columns: repeat(4, minmax(0, 1fr));

}



.contact-card a {

  display: block;

  margin-top: 8px;

  color: var(--navy-900);

  font-weight: 800;

  overflow-wrap: anywhere;

}



.contact-card a:hover,

.footer-links a:hover {

  color: var(--gold);

}



.contact-card p {

  margin-top: 8px;

  color: var(--navy-900);

  font-weight: 800;

}



.site-footer {

  color: rgba(255, 255, 255, 0.84);

  background:

    radial-gradient(circle at 18% 20%, rgba(199, 163, 92, 0.12), transparent 28rem),

    linear-gradient(180deg, var(--navy-900), var(--navy-950));

}



.footer-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}

.footer-visual {
  appearance: none;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  border: 1px solid rgba(234, 216, 173, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.footer-visual img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.88) contrast(1.05);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.footer-visual:hover img,
.footer-visual:focus-visible img {
  opacity: 0.92;
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1.04);
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 12, 22, 0.86);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.media-lightbox.is-open {
  opacity: 1;
}

.media-lightbox img {
  width: min(92vw, 980px);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(234, 216, 173, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.media-lightbox-close {
  position: fixed;
  right: 22px;
  top: 18px;
  width: 42px;
  height: 42px;
  color: var(--gold-soft);
  font-size: 1.45rem;
  line-height: 1;
  background: rgba(7, 20, 36, 0.76);
  border: 1px solid rgba(234, 216, 173, 0.32);
  border-radius: 50%;
  cursor: pointer;
}

body.has-lightbox {
  overflow: hidden;
}


.footer-brand strong {

  color: var(--white);

}



.footer-brand p,

.footer-brand span,

.copyright {

  margin: 0;

  color: rgba(255, 255, 255, 0.72);

}



.footer-links {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  justify-content: flex-end;

}



.footer-links a {

  color: rgba(255, 255, 255, 0.85);

  font-weight: 800;

}



.copyright {

  grid-column: 1 / -1;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

}



.reveal {

  opacity: 0;

  transform: translateY(18px);

  transition: opacity 0.55s ease, transform 0.55s ease;

}



.reveal.is-visible {

  opacity: 1;

  transform: translateY(0);

}



.error-page {

  min-height: 100svh;

  display: grid;

  align-items: center;

  padding: 80px 0;

  color: var(--white);

  background:

    linear-gradient(135deg, rgba(7, 20, 36, 0.96), rgba(16, 41, 68, 0.86)),

    url("/assets/img/background/background.png") center / cover;

  background-attachment: fixed;

}



.error-card {

  max-width: 660px;

  padding: 34px;

  border: 1px solid rgba(199, 163, 92, 0.32);

  border-radius: var(--radius);

  background: rgba(7, 20, 36, 0.72);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);

}



.error-card img {

  width: 54px;

  height: 54px;

  margin-bottom: 22px;

}



.error-card h1 {

  color: var(--white);

  font-size: clamp(2.2rem, 6vw, 4rem);

}



.error-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

/* V4 glass surface system: lets the fixed institutional background remain visible while keeping text readable. */
.section:not(.hero):not(.institutional-section) {
  background: transparent;
}

.section:not(.hero):not(.institutional-section) .section-heading h2 {
  color: var(--white);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.section:not(.hero):not(.institutional-section) .section-heading .eyebrow {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.card,
.profile-text,
.expertise-card,
.mission-card,
.path-card,
.contact-card,
.stat-card,
.timeline-group,
.language-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 252, 0.54));
  border-color: rgba(234, 216, 173, 0.26);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.expertise-card,
.mission-card,
.stat-card,
.timeline-group {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(241, 246, 250, 0.56));
}

.profile-text:hover,
.path-card:hover,
.contact-card:hover,
.language-card:hover,
.stat-card:hover {
  border-color: rgba(199, 163, 92, 0.52);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.2), var(--gold-glow);
}

.portrait-frame {
  background: rgba(7, 20, 36, 0.18);
  backdrop-filter: none;
}

.portrait-frame img {
  background: transparent;
}

.timeline {
  --timeline-runner-duration: 12s;
}

.timeline-runner {
  position: absolute;
  left: -5px;
  bottom: 0;
  z-index: 30;
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  background: radial-gradient(circle, #f5ffe8 0 18%, var(--gold-soft) 34%, var(--green-light) 56%, var(--green-deep) 82%);
  box-shadow: 0 0 0 10px rgba(31, 122, 77, 0.24), 0 0 38px rgba(123, 207, 138, 0.82), 0 0 16px rgba(234, 216, 173, 0.82) inset;
  animation: timelineRunner var(--timeline-runner-duration) linear infinite;
}

.timeline-runner-fixed {
  position: absolute;
  left: -5px;
  top: calc(100% - 18px);
  z-index: 30;
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid var(--gold-soft);
  border-radius: 50%;
  background: radial-gradient(circle, #b8ffd0 0 24%, var(--green-light) 42%, var(--green-deep) 76%);
  box-shadow: 0 0 0 12px rgba(31, 122, 77, 0.26), 0 0 46px rgba(123, 207, 138, 0.92), 0 0 16px rgba(234, 216, 173, 0.86) inset;
  animation: timelineRunnerFixed 5.5s linear infinite;
}

.timeline-item.is-pulsing::before {
  animation: timelinePointPulse 0.9s ease;
}

.timeline-item.is-pulsing h4 {
  color: var(--navy-700);
}


@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}


@keyframes scatterDollar {

  0% {

    opacity: 0;

    transform: translate(-50%, -50%) translateZ(0) scale(0.72) rotate(0deg);

  }

  30% {

    opacity: 0.65;

  }

  100% {

    opacity: 0;

    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) translateZ(42px) scale(1.08) rotate(18deg);

  }

}



@keyframes caret {

  50% {

    opacity: 0;

  }

}



@keyframes scrollCue {

  0% {

    opacity: 0;

    transform: translate(-50%, 0);

  }

  45% {

    opacity: 1;

  }

  100% {

    opacity: 0;

    transform: translate(-50%, 15px);

  }

}



@keyframes panelSweep {

  0% {

    transform: translateX(-100%);

  }

  48%,

  100% {

    transform: translateX(100%);

  }

}



@keyframes logoPulse {

  0%,

  100% {

    transform: scale(1);

    box-shadow: 0 0 24px rgba(199, 163, 92, 0.16);

  }

  50% {

    transform: scale(1.04);

    box-shadow: 0 0 34px rgba(199, 163, 92, 0.28);

  }

}



@keyframes leafFall {
  0% {
    transform: translate3d(0, -18vh, 0) rotateX(0deg) rotateY(0deg) rotateZ(var(--leaf-rotate, 0deg));
  }

  50% {

    transform: translate3d(calc(var(--leaf-drift, 80px) * 0.45), 48vh, 60px) rotateX(210deg) rotateY(130deg) rotateZ(calc(var(--leaf-rotate, 0deg) + 90deg));

  }

  100% {

    transform: translate3d(var(--leaf-drift, 80px), 118vh, 0) rotateX(420deg) rotateY(260deg) rotateZ(calc(var(--leaf-rotate, 0deg) + 180deg));
  }
}

@keyframes leafSpin {
  0% {
    rotate: 0 1 0 0deg;
  }
  50% {
    rotate: 1 1 0 180deg;
  }
  100% {
    rotate: 0 1 1 360deg;
  }
}

@keyframes staticLeafFall {
  0% {
    transform: translate3d(0, -15vh, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  35% {
    transform: translate3d(calc(var(--leaf-drift, 100px) * 0.35), 35vh, 70px) rotateX(170deg) rotateY(110deg) rotateZ(70deg);
  }
  70% {
    transform: translate3d(calc(var(--leaf-drift, 100px) * 0.72), 78vh, -20px) rotateX(340deg) rotateY(220deg) rotateZ(145deg);
  }
  100% {
    transform: translate3d(var(--leaf-drift, 100px), 118vh, 0) rotateX(520deg) rotateY(320deg) rotateZ(220deg);
  }
}

@keyframes timelineRunner {
  0% {
    bottom: 0;
    opacity: 0;
    transform: scale(0.82);
  }
  8% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: calc(100% - 7px);
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes timelineRunnerTrack {
  0% {
    top: calc(100% - 18px);
    opacity: 0;
    transform: scale(0.82);
  }
  8% {
    opacity: 1;
  }
  25% {
    top: 74%;
    box-shadow: 0 0 0 11px rgba(199, 163, 92, 0.13), 0 0 34px rgba(123, 207, 138, 0.62);
    transform: scale(1.24);
  }
  26% {
    transform: scale(1);
  }
  50% {
    top: 49%;
    box-shadow: 0 0 0 11px rgba(199, 163, 92, 0.13), 0 0 34px rgba(123, 207, 138, 0.62);
    transform: scale(1.24);
  }
  51% {
    transform: scale(1);
  }
  75% {
    top: 24%;
    box-shadow: 0 0 0 11px rgba(199, 163, 92, 0.13), 0 0 34px rgba(123, 207, 138, 0.62);
    transform: scale(1.24);
  }
  76% {
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes timelinePointPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(199, 163, 92, 0.22);
  }
  40% {
    transform: scale(1.45);
    box-shadow: 0 0 0 10px rgba(31, 122, 77, 0.18), 0 0 28px rgba(199, 163, 92, 0.42);
  }
}

@keyframes timelineRunnerFixed {
  0% {
    top: calc(100% - 18px);
    opacity: 0;
    transform: scale(0.8);
  }
  8% {
    opacity: 1;
  }
  24% {
    top: 76%;
    transform: scale(1.35);
    box-shadow: 0 0 0 13px rgba(199, 163, 92, 0.16), 0 0 42px rgba(123, 207, 138, 0.82);
  }
  28% {
    transform: scale(1);
  }
  49% {
    top: 51%;
    transform: scale(1.35);
    box-shadow: 0 0 0 13px rgba(199, 163, 92, 0.16), 0 0 42px rgba(123, 207, 138, 0.82);
  }
  53% {
    transform: scale(1);
  }
  74% {
    top: 26%;
    transform: scale(1.35);
    box-shadow: 0 0 0 13px rgba(199, 163, 92, 0.16), 0 0 42px rgba(123, 207, 138, 0.82);
  }
  78% {
    transform: scale(1);
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 0;
    transform: scale(0.9);
  }
}


@media (max-width: 1080px) {

  .site-nav {

    gap: 12px;

  }



  .expertise-grid,

  .mission-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }



  .contact-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



@media (max-width: 900px) {

  :root {

    --header-h: 68px;

  }



  .menu-toggle {

    display: inline-block;

  }



  .site-nav {

    position: absolute;

    left: 0;

    right: 0;

    top: 100%;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 16px 16px;

    background: rgba(7, 20, 36, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.1);

  }



  .site-nav.is-open {

    display: flex;

  }



  .site-nav a {

    padding: 11px 0;

  }



  .site-nav a::after {

    bottom: 6px;

  }



  .lang-link {

    display: inline-flex;

    justify-content: center;

    width: 58px;

    margin-top: 6px;

    padding: 8px 10px !important;

  }



  .hero-layout,
  .profile-grid,
  .path-grid,
  .cv-panel,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-visual {
    max-width: 360px;
  }


  .hero-portrait {

    justify-self: start;

    width: min(320px, 100%);

  }



  .skills-grid,

  .stat-grid,

  .language-grid {

    grid-template-columns: 1fr;

  }



  .expertise-grid,

  .mission-grid,

  .contact-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .cv-panel {

    align-items: flex-start;

  }



  .footer-links {

    justify-content: flex-start;

  }



  .loader,
  body,
  .hero-bg,
  .institutional-section,
  .institutional-card,

  .cv-panel,

  .error-page {

    background-attachment: scroll;
  }


  .leaf {

    opacity: calc(var(--leaf-opacity, 0.14) * 0.65);

  }

}



@media (max-width: 620px) {

  .container {

    width: min(calc(100% - 24px), var(--container));

  }



  .section {

    padding: 72px 0;

  }



  .hero {

    min-height: auto;

    padding-top: calc(var(--header-h) + 46px);

  }



  .brand span {

    display: none;

  }



  .hero-actions,

  .cv-actions {

    flex-direction: column;

    align-items: stretch;

  }



  .button {

    width: 100%;

  }



  .expertise-grid,

  .mission-grid,

  .contact-grid {

    grid-template-columns: 1fr;

  }



  .filter-bar {

    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 6px;

  }



  .filter-button {

    flex: 0 0 auto;

  }



  .timeline-group,

  .card,

  .profile-text,

  .expertise-card,

  .mission-card,

  .path-card,

  .contact-card,

  .language-card,

  .error-card,

  .cv-panel {

    padding: 20px;

  }

}



@media (hover: none), (pointer: coarse) {

  .custom-cursor {

    display: none;

  }

}



@media (prefers-reduced-motion: reduce) {

  html {

    scroll-behavior: auto;

  }



  *,

  *::before,

  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

  }



  .loader {

    transition: none;

    background-attachment: scroll;

  }



  .dollar-field,
  .custom-cursor,
  .timeline::after {
    display: none;
  }


  .typewriter::after,

  .scroll-down span {

    animation: none !important;

  }



  .reveal {

    opacity: 1;

    transform: none;

  }

}



@media print {

  .loader,

  .leaf-layer,

  .custom-cursor,

  .site-header,

  .scroll-down,

  .hero-actions,

  .filter-bar,

  .site-footer {

    display: none !important;

  }



  body {

    color: #000;

    background: #fff;

  }



  .section,

  .hero {

    padding: 24px 0;

  }



  .hero-bg {

    display: none;

  }

}

